-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Fix missing assignment #3151
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix missing assignment #3151
Conversation
|
💚 CLA has been signed |
|
@celeste0-0sec Thanks for the bug fix! Can you please sign the CLA so that I can apply this change? |
|
@celeste0-0sec I'm unable to merge this until you sign the CLA. If you already signed, the issue is that you signed with an email that is different from the one you are using in this PR. Please sign again, making sure you use the same email. Thanks! |
|
I triggered the CLA again and can confirm that it was signed, thank you! |
|
buildkite test this please |
|
buildkite test this please |
Co-authored-by: Quentin Pradet <[email protected]> (cherry picked from commit fa8fe72)
Co-authored-by: Quentin Pradet <[email protected]> (cherry picked from commit fa8fe72)
Co-authored-by: Quentin Pradet <[email protected]> (cherry picked from commit fa8fe72)
Co-authored-by: Quentin Pradet <[email protected]> (cherry picked from commit fa8fe72)
(cherry picked from commit fa8fe72) Co-authored-by: celeste0-0sec <[email protected]> Co-authored-by: Quentin Pradet <[email protected]>
(cherry picked from commit fa8fe72) Co-authored-by: celeste0-0sec <[email protected]> Co-authored-by: Quentin Pradet <[email protected]>
(cherry picked from commit fa8fe72) Co-authored-by: celeste0-0sec <[email protected]> Co-authored-by: Quentin Pradet <[email protected]>
(cherry picked from commit fa8fe72) Co-authored-by: celeste0-0sec <[email protected]> Co-authored-by: Quentin Pradet <[email protected]>
This change corrects identifier escaping in
elasticsearch/esql/esql.pyby properly assigning the result ofstr.replace()back to the local variable before wrapping the identifier in backticks. Previously thereplace()call produced a new string that was discarded; this leaves inner backticks unescaped. The patch ensures internal backticks are doubled so the rendered ES|QL identifier is quoted correctly.